home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000183_news@columbia.edu _Tue Dec 26 16:31:19 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id QAA25678 for <kermit.misc@watsun>; Tue, 26 Dec 1995 16:31:18 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id QAA15698 for kermit.misc@watsun; Tue, 26 Dec 1995 16:31:16 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: TCP/IP with OS/2 Help?
  8. Date: 26 Dec 1995 21:31:13 GMT
  9. Organization: Columbia University
  10. Lines: 41
  11. Message-ID: <4bppj1$fag@apakabar.cc.columbia.edu>
  12. References: <4bna0o$120@mercury.IntNet.net>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4bna0o$120@mercury.IntNet.net>,
  16. Jeff Tomich <jtomich@IntNet.net> wrote:
  17. > If I'm running OS/2 Warp Connect on my Home box and my office box, both 
  18. > have installed TCP/IP can I use Kermit to connect via TCP/IP to either 
  19. > machine? If so, any help would be appreciated.
  20. >
  21. Yes.  Assuming you are using OS/2 C-Kermit 5A(191) (the current version
  22. of C-Kermit for OS/2), you can tell it to wait for a connection and then
  23. go into server mode.  Then you can Telnet to it from any other Kermit
  24. program (such as C-Kermit on your other OS/2 system) and give SEND, GET,
  25. REMOTE xxx, BYE, and FINISH commands to transfer and manage files.
  26.  
  27. To tell OS/2 C-Kermit to wait for an incoming TCP/IP connection, do
  28. something like this:
  29.  
  30.   C-Kermit> define listen set host * 3000, if success server
  31.   C-Kermit> listen
  32.  
  33. "3000" is the TCP port to listen on.  If you leave this out, the default
  34. Telnet port (23) is used.
  35.  
  36. If you want to allow multiple consecutive server sessions, do it like this:
  37.  
  38.   C-Kermit> define listen :xx, set host * 3000, if success server, goto xx
  39.   C-Kermit> listen
  40.  
  41. Then the client Kermit program would make the connection like this:
  42.  
  43.   C-Kermit> set host foo.bar.net 3000
  44.  
  45. (where "foo.bar.net" is the IP hostname of the PC where the Kermit server is
  46. running) and then it would send file-transfer and management commands to the
  47. server, as described in Chapter 7 of "Using C-Kermit", which also describes
  48. various security-related settings you can establish on the server prior to
  49. listening for incoming connections.
  50.  
  51. More information about OS/2 C-Kermit at:
  52.  
  53.   http://www.columbia.edu/kermit/os2.html
  54.  
  55. - Frank